* {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    box-shadow: none !important;
  }
  .mainContainer {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #0005, #0005), url("../img/loginBg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  
  .loginCard {
    width: 400px;
    height: auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
  }
  
  .faceBookBtn {
    display: block;
    border: 0px;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 2px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-size: 16px;
    width: calc(100% - 10px);
    overflow: hidden;
    padding: 0px 10px;
    user-select: none;
    height: 40px;
    background: rgb(59, 89, 152);
  }
  
  .googleBtn {
    display: block;
    border: 0px;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 2px;
    color: black;
    cursor: pointer;
    font-size: 16px;
    width: calc(100% - 10px);
    overflow: hidden;
    padding: 0px 10px;
    user-select: none;
    height: 40px;
    background: white;
  }
  
  .appleBtn {
    display: block;
    border: 0px;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 2px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    font-size: 16px;
    width: calc(100% - 10px);
    overflow: hidden;
    padding: 0px 10px;
    user-select: none;
    height: 40px;
    background: rgb(255, 255, 255);
  }
  
  .socialLoginBtn {
    margin: 15px 0px;
    width: 100%;
    border: 1px solid #ababab;
  }
  .orLogin {
    width: 100%;
    height: 20px;
    margin: 15px 0px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .orLine {
    width: 100%;
    height: 2px;
    background-color: #ababab;
  }
  
  .orLogin span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    width: 70px;
    text-align: center;
  }
  
  .signInBtn {
    color: #ffffff;
    background-color: #455a63;
  }
  .signInBtn:hover {
    background-color: #50656e;
    color: #ffffff;
  }
  
  .loginInputs {
    display: flex;
  }
  .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 10px;
  }
  
  .icon i {
    font-size: 20px;
    color: #ababab;
  }
  
  .forgotLink {
    float: right;
    margin: 5px 0px 10px;
    color: blue;
  }
  
  .loginPassword {
    position: relative;
  }
  .seePassword {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .profileImage {
    width: 90px;
    height: 110px;
    margin: 10px auto 20px;
    position: relative;
  }
  
  .profileImage img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .uploadImageIcon {
    background: rgb(59, 89, 152);
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .countryCode {
    width: 80px !important;
    margin-right: 10px;
  }
  
  .mainContainerSignUp {
    height: 100vh!important;
    padding: 30px 0px;
  }
  
  @media screen and (max-width: 600px) {
    .loginCard {
      width: 90%;
    }
  }
  